Plots

Column

Chart A

Column

Chart B

Chart C

Data

---
title: "Dan's Dashboarding"
output: 
  flexdashboard::flex_dashboard:
    orientation: columns
    vertical_layout: fill
    social: ["menu"]
    source_code: embed
---

```{r setup, include=FALSE}
library(flexdashboard)
library(tidyverse)
library(palmerpenguins)
library(plotly)
library(DT)
library(fontawesome)
data("penguins")
```
Plots
=====================================================================
Column {data-width=650}
-----------------------------------------------------------------------

### Chart A

```{r}
a= penguins %>% ggplot(aes(x=bill_length_mm, y = bill_depth_mm, color = species))+geom_point()
ggplotly(a)

#htmlwidgets.org great resource for plotting widgets
```

Column {data-width=350}
-----------------------------------------------------------------------

### Chart B

```{r}

```

### Chart C

```{r}

```
Data
=====================================================================
```{r}
penguins %>% datatable(extensions = "Buttons", 
                       options = list(dom="Blfrtip",
                                      buttons = c("copy", "csv", "excel", "pdf", "print")))

#use datatables.net to customize your html tables
```